infix (cont), infix ∋
1 | language documentation Sets, bags, and mixes |
1.1 | (Sets, bags, and mixes) infix (cont), infix ∋ |
2 | language documentation Operators |
2.1 | (Operators) infix (cont), infix ∋ |
Documentation for infix (cont), infix ∋
assembled from the following types:
language documentation Sets, bags, and mixes
(Sets, bags, and mixes) infix (cont), infix ∋
Returns True
if $a
contains $b
as an element, else False
. More information, Wikipedia definition.
language documentation Operators
From Operators
(Operators) infix (cont), infix ∋
multi sub infix:<(cont)>(, --> Bool)multi sub infix:<∋>(, --> Bool)
Returns True
if $a
is an element of $b
.
say (1,2,3) (cont) 2; # OUTPUT: «True»say (1, 2, 3) ∋ 4; # OUTPUT: «False»
∋
is equivalent to (cont)
, at codepoint U+220B (CONTAINS AS MEMBER).